home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d13
/
fix_123.arc
/
FIX-123.BAT
next >
Wrap
DOS Batch File
|
1989-11-22
|
2KB
|
53 lines
Echo Off
If X%1==X goto USAGE
Goto %1
:USAGE
Echo B
Echo The Dirty Birdy's Fix For Lotus 123 Release 2.2.
Echo B
Echo This batch file can do one of three functions to 123 Release 2.2.
Echo It can [1]: Change or wipe out the Name, Company Name and Serial Number,
Echo [2]: Remove the intro screen (speeds up loading of the program), and
Echo [3]: Put the intro screen back in.
Echo B
Echo FIX-123 Usage:
Echo Type FIX-123 FIXNAME to change Name, Company and Serial Number.
Echo Type FIX-123 NOINTRO to remove the intro screen during program loading.
Echo Type FIX-123 INTRO to put intro screen back in during program loading.
Echo B
Echo NOTE: YOU MUST HAVE DEBUG.COM IN YOUR PATH OR CURRENT DIRECTORY FOR
Echo 123-FIX.BAT TO WORK PROPERLY.
Echo Also, make sure that the file 123.EXE is in the same directory
Echo as all the 123 Fix Files.
Echo B
Pause
Goto END
:NOINTRO
Rename 123.EXE 123.HAK
Debug 123.HAK <NOINTRO.SCR >NUL
Rename 123.HAK 123.EXE
Echo B
Echo Lotus 123 now set up for NO INTRO SCREEN during program loading.
Echo B
Pause
Goto END
:INTRO
Rename 123.EXE 123.HAK
Debug 123.HAK <INTRO.SCR >NUL
Rename 123.HAK 123.EXE
Echo B
Echo Lotus 123 now set up for INTRO SCREEN during program loading.
Echo B
Pause
Goto END
:FIXNAME
Rename 123.EXE 123.HAK
Debug 123.HAK <FIXNAME.SCR >NUL
Rename 123.HAK 123.EXE
Echo B
Echo Lotus 123 Name & Serial Number Stamps have been changed.
Echo B
Pause
Goto END
:END